home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Modemtools / CTB Tools / Goodies / FTPack Scripting Interface < prev    next >
Encoding:
Text File  |  1992-08-14  |  2.9 KB  |  76 lines  |  [TEXT/ttxt]

  1.  
  2.  
  3. FTPack Scripting Interface
  4. -------------------------
  5.  
  6. For programmers eyes only…
  7.  
  8. All the parameters accessible through the Configuration Dialogs
  9. can also be set through the Scripting Interface.
  10.  
  11. Following is the syntax of the Scripting Interface.
  12. Please, refer to the General Help for the meaning of each parameter.
  13. You can also test your Scripts with the Sample application from Apple.
  14.  
  15.  
  16. Session Configuration :
  17.  ShowSessions                   true | false
  18.     Session                              "session name"
  19.  
  20. Server Configuration :
  21.     RemoteAddress                  "host name" | "IP address"
  22.  
  23. Access Configuration :
  24.     User                                 "user name"
  25.     Password                          "password        (or "encrypted pwd" returned by FTGetConfig())
  26.     Account                              "account"        (or "encrypted pwd" returned by FTGetConfig())
  27.     ShowDialog                        true | false
  28.     ShowFiles                         true | false
  29.     FullList                          true | false
  30.     Look                                 "look (format) name"
  31.     LogFile                              true | false
  32.     LogName                              "file name"
  33.     FullLog                              true | false
  34.  
  35. Transfer Configuration :
  36.     TransmitLF                        true | false
  37.     SkipLF                               true | false
  38.     XferMode                          ascii | binary | macBinary
  39.     SendMode                          store | storeUnique | append
  40.     ReceiveMode                       cancel | prompt | rename | append | overwrite
  41.     Document                          "document name"    (ex: "TeachText Doc")
  42.     Creator                              "creator"        (ex: "ttxt")
  43.     Type                                 "type"            (ex: "TEXT")
  44.  
  45. Script Configuration :
  46.     UseScript                         true | false
  47.     ScriptAlerts             true | false
  48.     Script                               [cmd◊cmd◊…]        (Commands are described in the General Help)
  49.                                                                      (They must be between '[]', or '{}' or '||' and
  50.                                                                       separated by Opt-Shift-V '◊')
  51.  
  52. Options Configuration :
  53.     MacTCPBuffer                   16384 | 32768 | 65536 | 131072
  54.     BlocksSize                        1024 | 2048 | 4096 | 8192 | 16384 | 32768
  55.     ConnectTime                       decimal value    (0…255)
  56.     ControlTime                       decimal value    (0…255)
  57.     DataTime                          decimal value    (0…255)
  58.     RepeatTYPECmd                  true | false
  59.     UsePORTCmd                        true | false
  60.     ControlPort                       decimal value    (3…65535, should stay 21)
  61.  
  62. Extensions Configuration :
  63.     LoginPatch                        "string"        (ex: "CWD /users/john")
  64.     ReceivePatch                "string"        (ex: "STRU r")
  65.     SendPatch                      "string"        (ex: "STRU r")
  66.     ListPatch                      "string"        (ex: "SITE UNIX")
  67.     LogoutPatch                    "string"        (ex: "DELE *.temp") 
  68.     NlstCmd                           "string"        (should be "NLST" or "NLST -a" only)
  69.     ListCmd                           "string"        (should be "LIST" or "LIST -a" only)
  70.     DirUpCmd                       "string"        (should be "CDUP" or "CWD .." only)
  71.  
  72.  
  73. Notes : 
  74.     - UseScript, Script and DirUpCmd are available since version 1.1 only.
  75.     - Look, ScriptAlerts and RepeatTYPECmd are available since version 1.2 only.
  76.